net/http.http2stream.state (field)

16 uses

	net/http (current package)
		h2_bundle.go#L4636: 	state            http2streamState
		h2_bundle.go#L4662: 		return st.state, st
		h2_bundle.go#L5261: 		switch st.state {
		h2_bundle.go#L5329: 		switch st.state {
		h2_bundle.go#L5341: 			st.state = http2stateHalfClosedLocal
		h2_bundle.go#L5670: 	if st.state == http2stateIdle || st.state == http2stateClosed {
		h2_bundle.go#L5671: 		panic(fmt.Sprintf("invariant; can't close stream in state %v", st.state))
		h2_bundle.go#L5673: 	st.state = http2stateClosed
		h2_bundle.go#L5935: 	st.state = http2stateHalfClosedRemote
		h2_bundle.go#L5994: 		if st.state == http2stateHalfClosedRemote {
		h2_bundle.go#L6163: 		state:     state,
		h2_bundle.go#L6464: 	if st.state != http2stateHalfClosedRemote && st.state != http2stateClosed {
		h2_bundle.go#L7139: 	if msg.parent.state != http2stateOpen && msg.parent.state != http2stateHalfClosedRemote {